forum

Home / DeveloperSection / Forums / Write to the file system in a directory

Write to the file system in a directory

Anonymous User208707-Oct-2013

I would like to write to the file system in a directory C: \ directory name, for the moment I have this code:

if (! System.IO.File.Exists (HttpContext.Current.Server.MapPath (filename))) 
{
   TXTFile = new System.IO.StreamWriter (HttpContext.Current.Server.MapPath (filename));
}
else
{
   TXTFile = System.IO.File.AppendText (HttpContext.Current.Server.MapPath (filename));
}


but in this way writes on the application folder. How to fix it?


Updated on 08-Oct-2013
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By